5d5f2f54ebb892a1b867d9db0ccafa5c9658ca6a,src/be/ibridge/kettle/trans/Trans.java,Trans,prepareExecution,#String[]#,202
Before Change
/*
* Set the arguments on the transformation...
*/
transMeta.setArguments(arguments);
/* OK, see if we need to capture the logging into a String and
* then put it in a database field later on.
After Change
/*
* Set the arguments on the transformation...
*/
if (arguments!=null) transMeta.setArguments(arguments);
/* OK, see if we need to capture the logging into a String and
* then put it in a database field later on.